Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@types/glob
Advanced tools
The @types/glob package provides TypeScript type definitions for the glob library, which is a utility that allows for pattern matching based on the rules used by the Unix shell. These type definitions enable TypeScript developers to use glob in a type-safe manner, ensuring that their usage of glob adheres to the expected types and interfaces.
Pattern Matching
This feature allows you to match files in your filesystem using glob patterns. The example demonstrates how to find all TypeScript (.ts) files in a project and log them.
import * as glob from 'glob';
glob('**/*.ts', (err, files) => {
if (err) {
console.error('Glob pattern error', err);
return;
}
console.log('Matched files:', files);
});
Synchronous Pattern Matching
This feature provides a way to synchronously find files matching a pattern. The code sample shows how to synchronously find and log all JavaScript (.js) files.
import * as glob from 'glob';
const files = glob.sync('**/*.js');
console.log('Matched JavaScript files:', files);
Using Options
This feature demonstrates how to use options to refine the search. In the example, the search is for all TypeScript files, excluding those in the node_modules directory.
import * as glob from 'glob';
glob('**/*.ts', { ignore: '**/node_modules/**' }, (err, files) => {
if (err) {
console.error('Glob pattern error', err);
return;
}
console.log('Matched files:', files);
});
Minimatch is a minimal matching utility that implements the same glob pattern matching rules. It is actually used by glob under the hood. Compared to @types/glob, minimatch provides a more focused, lower-level interface for pattern matching without filesystem operations.
Fast-glob is an alternative to glob that focuses on performance and additional features like multiple pattern matching. It provides a similar API to glob but is designed to be faster and more efficient, especially for large sets of files.
Node-glob is the underlying library that @types/glob provides types for. It offers the core functionality of file pattern matching. The comparison here is more about the relationship; @types/glob adds TypeScript support to node-glob, enhancing its usability in TypeScript projects.
npm install --save @types/glob
This package contains type definitions for Glob (https://github.com/isaacs/node-glob).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/glob.
These definitions were written by vvakame, voy, Klaus Meinhardt, and Piotr Błażejewicz.
FAQs
TypeScript definitions for glob
The npm package @types/glob receives a total of 10,351,495 weekly downloads. As such, @types/glob popularity was classified as popular.
We found that @types/glob demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.